home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / infodata / callbook.tar / callbook_1.3 / compress / huffman.c < prev    next >
C/C++ Source or Header  |  1989-12-14  |  223b  |  15 lines

  1. #include <stdio.h>
  2. #include "huffman.h"
  3.  
  4. main()
  5. {
  6.     int size, temp, sum = 0;
  7.     char buf[BUFSIZ];
  8.  
  9.     while (size = read(0, buf, BUFSIZ-1))
  10.         for (temp=0; temp<size; temp++)
  11.             sum += psizes[buf[temp]];
  12.  
  13.     printf("%d\n", sum);
  14. }
  15.